home *** CD-ROM | disk | FTP | other *** search
- @echo off
-
- @echo:
- @echo Telix 3.22 Fix - Removes shareware intro and ending screens
- @echo:
- @echo Patching file: TELIX.EXE (version 3.22 only!)
- @echo:
- @echo File info: 275024 31-01-94 3:22a
- @echo:
- @echo ┌──────────────┬────────────┬────────────┬──────────────────────────────┐
- @echo │ Hex offset │ Original │ Replace │ Info │
- @echo ├──────────────┼────────────┼────────────┼──────────────────────────────┤
- @echo │ 038C4 │ 9A 8F 09 │ E9 07 02 │ Exit screen and 15 sec wait │
- @echo │ 2B26C │ 7D │ EB │ Intro screen and wait │
- @echo └──────────────┴────────────┴────────────┴──────────────────────────────┘
-
- @goto PATCH
-
- N TELIX.###
- L 5000:0
- E 5000:38C4 E9 07 02
- E 7000:B26C EB
- W 5000:0
- Q
-
- :PATCH
-
- echo:
- echo Press Ctrl-C now to abort patch or
- pause
- if not exist TLX322FX.BAT goto ERROR1
- if not exist TELIX.EXE goto ERROR2
- ren TELIX.EXE TELIX.### > NUL
- debug < TLX322FX.BAT > NUL
- ren TELIX.### TELIX.EXE > NUL
- echo:
- echo Patch successful!
- goto END
-
- :ERROR1
-
- echo:
- echo File not found. Patch aborted.
- goto END
-
- :ERROR2
-
- echo:
- echo TELIX.EXE not in current directory. Patch aborted.
-
- :END
-